home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_d / qrep097a.zip / QRTEMPL.PAS < prev    next >
Pascal/Delphi Source File  |  1995-07-28  |  561b  |  32 lines

  1. unit Qrtempl;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, Quickrep, ExtCtrls;
  8.  
  9. type
  10.   TQuickReport = class(TForm)
  11.     TitleBand: TQRBand;
  12.     DetailBand: TQRBand;
  13.     PageFooterBand: TQRBand;
  14.     Rep: TQuickReport;
  15.     DateTimeLabel: TQRSysData;
  16.     PageNumberLabel: TQRSysData;
  17.     QRSysData1: TQRSysData;
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.  
  24. var
  25.   QuickReport: TQuickReport;
  26.  
  27. implementation
  28.  
  29. {$R *.DFM}
  30.  
  31. end.
  32.